home *** CD-ROM | disk | FTP | other *** search
/ Aminet 6 / Aminet 6 - June 1995.iso / Aminet / misc / edu / VerbesRgPch12.lha / Install_Patch < prev    next >
Encoding:
Text File  |  1995-03-28  |  559 b   |  22 lines

  1. ; Installer script for Ensemble Verbes patch
  2. ; $VER: Install_Patch 1.0 (28.3.95)
  3.  
  4. (set newdest
  5.     (askdir
  6.         (prompt "Select the directory where \"Ensemble Verbes\" was installed")
  7.         (default @default-dest)
  8.         (help "You must tell the installer where \"Ensemble Verbes\" is located.")
  9.         (newpath)
  10.     )
  11. )
  12.  
  13. (if
  14.     (exists (tackon newdest "Verbes"))
  15.     (
  16.         (working "Patching Ensemble Verbes to V1.2")
  17.         (copyfiles (source (tackon newdest "Verbes")) (dest "t:"))
  18.         (run (cat "sc:c/spatch -o" (tackon newdest "Verbes") " -pVerbes.pch t:Verbes"))
  19.         (delete "t:Verbes")
  20.     )
  21. )
  22.